home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 19
/
Amiga Format CD19 (1997-10-02)(Future Publishing)(GB)(Track 1 of 5)[!][issue 1997-11].iso
/
-seriously_amiga-
/
shareware
/
comms
/
other
/
weatherexperience
/
arexx
/
example.wxp
next >
Wrap
Text File
|
1997-08-18
|
516b
|
29 lines
/* Example script for WeatherExperience that prints
** some of the data for all cities.
*/
/* get results */
options results
/* talk to first WE started */
address WEATHEREXP.1
/* show which version of WE we are running */
'info version'
say "Running " || substr(result, 7)
/* refresh data */
'refresh'
/* get data for all cities and print it to the screen */
'getdata wd'
do i = 1 to wd.count
say "In " || wd.i.city || " in " || wd.i.country || " the temperature is currently " || wd.i.temperature
end